This should work with any linix as a virtual box or a standalone server
Downloaded lubuntu 22.04 lts
Install lubuntu on Virtual box used 8gb ram with 60gb hd space
Installed updates
Reboot
ran VBoxManage modifyvm "VM name" --spec-ctrl on 
	to remove spectr mitigation error on virtual box
installed net-tools to determine ip
	sudo apt install net-tools 	
ran ifconfig found ip not on main network
changed machine network to bridged adapter on virtual box
ran ifconfig now on correct net to confirm ip
installed openssh-server
	sudo apt install openssh-server
installed apache 
	sudo apt install apache2
installed mysql
	ssudo apt install mysql-server
created a mysql user
	sudo mysql
	create user 'Tom'@'%' identified with mysql_native_password by 'password';
	exit
install php
	sudo apt install php libapache2-mod-php php-mysql
created php test
	sudo vi /var/www/html/info.php
	insert (i)
	<?php
	phpinfo();
	?>
	esc wq
tested php
	ip/info.php
installed make
	sudo apt install make
installed build-essential
	sudo apt install build-essential
downloaded udp-server.zip
copied udp-server folder to downloads
terminal to /downloads/udp-server
	make
	(will get a warning but it will function)
downloaded eircd server
copied eircd folder to downloads
made configure executable
made go executable
executed go (this does the appropiate configuration for EVO
copied udp-server to ircd/bin
copied ircd-etc files to ircd/etc folder
edited ircd.conf with what i wanted
ran ircd
ran udp-server
tested evo1

preparation of track script for download from evo
create user tracks
logged in as tracks
copied tracks_scripts folder to tracks
copied tracks folder to tracks having a tracks folder under the tracks folder

preparation of all evo files
downloaded http://tonkas.hopto.org/HOLD/All_EVO1.zip
extracted to /var/www/html/tonkas/EVO1
downloaded http://tonkas.hopto.org/HOLD/All_EVO2.zip
extracted to /var/www/html/tonkas/EVO2

created virtual web server tonkas (sample in apache folder) this will make it so can go to tonkas.hopto.org and tonkas.hopto.org/tracks/ the /tracks folder also has the evo download script
enabled virtual server

imported database using Tonkas_Database.sql

allowed www-data access to /home/tracks/tracks
sudo chgrp -R www-data /home/tracks/tracks
sudo chmod -R g+wrxs /home/tracks/tracks
sudo chmod +x /home/tracks

allowed www-data access to /home/tracks/track_script
sudo chgrp -R www-data /home/tracks/track_script
sudo chmod -R g+wrxs /home/tracks/track_script
